home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvp101.arc / DVP.DOC next >
Text File  |  1989-10-30  |  3KB  |  75 lines

  1.                            DVPrint
  2.                            v. 1.01
  3.                            Copr., Scott Royall
  4.  
  5. COPYRIGHT
  6. ---------
  7. This program is released as FREE copyrighted software. You may do with
  8. the distributed files as you chose; no donation is requested. However,
  9. the software remains my property as I intend to enhance it over time.
  10.  
  11. CREDIT WHERE IT'S DUE
  12. ---------------------
  13. DVP began as a Microsoft QuickC translation of Ron Epps' Qupie.
  14. Thus, thanks goes to him for the basic program design. There are
  15. significant differences, however. Run the program with no parameters
  16. first to receive instructions.
  17.  
  18. WHY I BOTHERED?
  19. ---------------
  20. It seems that everyone has written print spoolers for DesqView. DOS's
  21. PRINT command does not properly work because it relies on there being
  22. unused CPU cycles. Of course there are precious few free cycles in a
  23. multitasking environment. Printing does not itself halt other tasks, but
  24. DOS is not re-entrant. Other tasks cannot perform DOS functions while
  25. one task does so. This means that the DOS PRINT command, with its heavy
  26. use of DOS itself, can impede DV tasks. Of all the substitute spoolers I
  27. have tried, none support filename wildcards. That's mainly why I wrote
  28. DVP. It handles wildcards, and allows the user to have files
  29. automatically deleted after printing. The latter feature is useful for
  30. such things as dumping BBS log stats to the printer.
  31.  
  32. COMMAND FORMAT
  33. --------------
  34.  
  35.            DVP [options] filename
  36.                prints file(s) specified by 'filename' mask. Wildcards OK.
  37.            DVP [options] @filename
  38.                prints files whose names are in specified file.
  39.                The file is a simple text file containing one
  40.                file name per line. Wildcards OK.
  41.  
  42.  
  43.    Options:
  44.  
  45.            -f   suppress print form feed after each file.
  46.            -d   delete file(s) after printing.
  47.            -l#  print to printer # (i.e. -l2 prints to LPT2).
  48.  
  49.  
  50. WARRANTY/SUPPORT
  51. ----------------
  52. There is no warranty; DVP is distributed as-is. Use and any
  53. consequences are the user's responsibility. HOWEVER, I do support what I
  54. produce. I have tested all functions in DVP, but a program is never
  55. fully debugged. If you have any suggestions or problems, please contact
  56. me at the following address:
  57.  
  58. US Mail -
  59.         Scott Royall
  60.         3326 Westridge
  61.         Houston, TX  77025
  62.  
  63. Fidonet -
  64.         1:106/357
  65.  
  66. USENET -
  67.        ...!uunet!nuchat!scott
  68.  
  69. HISTORY
  70. -------
  71.  
  72. 1.00b    Initial release.
  73. 1.01     Corrects a bug that csused files specified with paths not to
  74.          be found.
  75.